home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / ds.dir / 00309.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  908 b   |  32 lines

  1. on mouseDown
  2.   global Double, Increment
  3.   set ClLoc to the mouseV
  4.   put "inside double mouseup"
  5.   if Double = 1 then
  6.     if the visible of sprite 48 = 1 then
  7.       if ClLoc < 455 then
  8.         if Increment = 1 then
  9.           set Increment to -1
  10.         else
  11.           set Increment to 1
  12.         end if
  13.         set the moveableSprite of sprite 48 to 1
  14.         set the height of sprite 48 to 240
  15.         set the width of sprite 48 to 320
  16.         set the locH of sprite 48 to 321
  17.         set the locV of sprite 48 to 258
  18.         set the moveableSprite of sprite 48 to 0
  19.         set Back to the locV of sprite 1
  20.         set Back to Back + Increment
  21.         puppetSprite(1, 1)
  22.         set the moveableSprite of sprite 1 to 1
  23.         set the locV of sprite 1 to Back
  24.         set the moveableSprite of sprite 1 to 0
  25.         set Double to 0
  26.         setbar()
  27.         updateStage()
  28.       end if
  29.     end if
  30.   end if
  31. end
  32.